home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 1 / Mac Magazin and MacEasy Magazine CD - Issue 01.iso / Sharewarebibliothek / Powermac / C64 / SOURCE / Traps.h < prev    next >
Text File  |  1994-06-06  |  182b  |  11 lines

  1. typedef struct {
  2.     word addr;
  3.     byte check[3];
  4.     void (*call)(void);
  5. } trap;
  6.  
  7. int TrapInitialize(void);
  8. int AddTrap(trap t);
  9. int DeleteTrap(word addr);
  10. void TrapExecute(void);
  11.